home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 2410 / 2410.xpi / chrome / content / foxmarks-changeprofile.xul < prev    next >
Extensible Markup Language  |  2010-01-28  |  3KB  |  76 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.  
  5. Copyright 2008 Foxmarks Inc.
  6.  
  7. foxmarks-changeprofile.xul: implements the change profile dialog.
  8.  
  9. -->
  10.  
  11. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css" ?>
  12. <?xml-stylesheet href="chrome://foxmarks/skin/foxmarks.css" type="text/css" ?>
  13.  
  14.  
  15. <!DOCTYPE dialog SYSTEM "chrome://foxmarks/locale/foxmarks.dtd">
  16.  
  17. <dialog id="foxmarks-changeprofile"
  18.     title="&profile.dialog.title;"
  19.     windowtype="foxmarks:changeprofile"
  20.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  21.     xmlns:html="http://www.w3.org/1999/xhtml"
  22.     buttons="accept,cancel"
  23.     ondialogaccept="return ChangeProfileOK()"
  24.     ondialoghelp="return ChangeProfileHelp();"
  25.     onload="ChangeProfileLoad()"
  26.     persist="screenX screenY" >
  27.  
  28.     <script src="chrome://foxmarks/content/foxmarks-changeprofile.js" />
  29.     <script src="chrome://foxmarks/content/foxmarks-settings.js" />
  30.     <script src="chrome://foxmarks/content/foxmarks-uitools.js" />
  31.  
  32.     <description style="width: 20em; margin-bottom: 1.5em">
  33.         &profile.dialog.desc;
  34.     </description>
  35.     
  36.     <groupbox>
  37.         <grid>
  38.             <columns>
  39.                 <column />
  40.                 <column />
  41.             </columns>
  42.  
  43.             <rows>
  44.                 <row align="center"> 
  45.                     <label value="&dialog.label.password;" control="password" />
  46.                     <textbox id="password" type="password" size="32"
  47.                         oninput="PasswordChange();" />
  48.                 </row>
  49.                 <row align="center">
  50.                     <label value="&label.profilechoice;" />
  51.                     <hbox align="center">
  52.                         <image id="profileSpinner" hidden="true" 
  53.                             src="chrome://foxmarks/skin/images/Throbber-small.gif"
  54.                             height="16" width="16"/>
  55.                         <menulist id="profileMenuList" disabled="true">
  56.                             <menupopup id="profileMenuPopup" >
  57.                                 <menuitem label="&profile.defaultname;" 
  58.                                     value="0" />
  59.                                 <menuitem label="1" value="1" hidden="true"/>
  60.                                 <menuitem label="2" value="2" hidden="true"/>
  61.                                 <menuitem label="3" value="3" hidden="true"/>
  62.                                 <menuitem label="4" value="4" hidden="true"/>
  63.                                 <menuitem label="5" value="5" hidden="true"/>
  64.                                 <menuitem label="6" value="6" hidden="true"/>
  65.                                 <menuitem label="7" value="7" hidden="true"/>
  66.                                 <menuitem label="8" value="8" hidden="true"/>
  67.                                 <menuitem label="9" value="9" hidden="true"/>
  68.                             </menupopup>
  69.                         </menulist>
  70.                     </hbox>
  71.                 </row>
  72.             </rows>
  73.         </grid>
  74.     </groupbox>
  75. </dialog>
  76.